home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / fracblank / source / fraccontrol.h < prev    next >
C/C++ Source or Header  |  2004-08-03  |  589b  |  38 lines

  1. // The main program
  2.  
  3. extern struct Process *MainProcess;
  4.  
  5. // BlankerEntry data
  6.  
  7. extern struct SignalSemaphore BlankSemaphore;
  8.  
  9. // Screen mode requester data
  10.  
  11. extern ULONG DisplayID;
  12. extern WORD  DisplayDepth;
  13. extern WORD  Depth;
  14.  
  15. // BlankerControl data
  16.  
  17. extern struct Process *BlankerControlProcess;
  18.  
  19. extern struct Hook ScreenHook,
  20.                    WindowHook;
  21.  
  22. // A blank pointer
  23.  
  24. APTR Pointer;
  25.  
  26. // Screen and pattern change timeout
  27.  
  28. extern ULONG PatternCount;
  29.  
  30. // Declarations for cosmic flame blanker code
  31.  
  32. extern ULONG MaxRecursionLevel;
  33.  
  34. // Prototypes
  35.  
  36. extern VOID BlankerEntry();
  37.  
  38.